home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmStartup
- BackColor = &H00FFFFFF&
- BorderStyle = 3 'Fixed Dialog
- ClientHeight = 1590
- ClientLeft = 3855
- ClientTop = 4275
- ClientWidth = 3585
- ControlBox = 0 'False
- BeginProperty Font
- name = "Arial"
- charset = 0
- weight = 400
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 1995
- Left = 3795
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1590
- ScaleWidth = 3585
- ShowInTaskbar = 0 'False
- Top = 3930
- Visible = 0 'False
- Width = 3705
- Begin VB.Label Label5
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- Caption = "Loading. Please wait..."
- BeginProperty Font
- name = "Arial"
- charset = 0
- weight = 700
- size = 12
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H000000FF&
- Height = 285
- Left = 0
- TabIndex = 4
- Top = 1200
- Width = 3585
- End
- Begin VB.Label Label4
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- Caption = "By Bill Hetherington"
- BeginProperty Font
- name = "Arial"
- charset = 0
- weight = 700
- size = 9.75
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 315
- Left = 0
- TabIndex = 3
- Top = 870
- Width = 3585
- End
- Begin VB.Label Label3
- BackStyle = 0 'Transparent
- Caption = "CYCLOTRON"
- BeginProperty Font
- name = "Arial"
- charset = 0
- weight = 700
- size = 15.75
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 345
- Left = 1170
- TabIndex = 2
- Top = 420
- Width = 2025
- End
- Begin VB.Label Label2
- BackStyle = 0 'Transparent
- Caption = "IDI"
- BeginProperty Font
- name = "Arial"
- charset = 0
- weight = 700
- size = 14.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 345
- Left = 1170
- TabIndex = 1
- Top = 30
- Width = 435
- End
- Begin VB.Label Label1
- BackStyle = 0 'Transparent
- Caption = "M"
- BeginProperty Font
- name = "Arial"
- charset = 0
- weight = 700
- size = 48
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 975
- Left = 390
- TabIndex = 0
- Top = -120
- Width = 825
- End
- Attribute VB_Name = "frmStartup"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Form_Load()
- 'Centre form
- Top = (Screen.Height - Height) / 2
- Left = (Screen.Width - Width) / 2
- 'Show it
- frmStartup.Show
- 'Display it fully
- frmStartup.Refresh
- 'Load main application interface
- MCIApp.Show
- End Sub
-